home *** CD-ROM | disk | FTP | other *** search
- /**************** Definitions for WLABEL.C ********************************/
-
- #undef toupper
- #undef tolower
-
- /******************* Macros ***********************************************/
-
- #define max(x,y) ((x) > (y)) ? (x) : (y)
- #define min(x,y) ((x) < (y)) ? (x) : (y)
- #define ctr(x,y) ((y) - (x)) / 2
-
- /******************** Misc Definitions **********************************/
-
- #define TRUE -1
- #define FALSE 0
- #define ERROR 0
- #define ESCAPE 27 /*ascii escape code*/
- #define ESC 27
- #define CR 13
- #define REVERSE 0x70 /* reverse video attribute */
-
- /************************************ END OF DEFINITIONS *******************/
-